home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BBS in a Box 7
/
BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso
/
Files
/
Tele
/
Pete Johnson
/
TImport 2.0.3<source>.cpt
/
TImportGlobals.p
< prev
Wrap
Text File
|
1991-06-25
|
700b
|
39 lines
unit Globals;
{ Created June 29, 1989, to organize global variables }
interface
const
NULL = chr(0);
CTLA = chr(1);
TAB = chr(9);
ENDLINE = chr(13);
SPACE = chr(32);
type
MyByte = byte;
OneString = STR255;
OneStringPtr = ^OneString;
OneStringHdl = ^OneStringPtr;
Section = record
Name: string;
Limit: longint;
Age: longint;
Number: integer;
Backup: boolean
end;
SectionPtr = ^Section;
SectionHandle = ^SectionPtr;
var
doneFlag, MsgBody, SectCount: boolean;
HiStringNo, CurrentResFile: integer;
MyWindow: WindowPtr;
DateString, TimeString, TabbyStamp, CreatorType: str255;
MaxMsgLine: longint;
implementation
end. { Globals unit }